home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / dev / c / qtools0.2-src.lha / src / include / init.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-08-12  |  784 b   |  41 lines

  1. #ifndef    INIT_H
  2. #define    INIT_H
  3.  
  4. #ifdef    HAVE_CONFIG_H
  5. # include "./config.h"
  6. #endif
  7. #ifdef    STDC_HEADERS
  8. # include <stdlib.h>
  9. # include <stdarg.h>
  10. # include <string.h>
  11. #endif
  12. #ifdef    HAVE_UNISTD_H
  13. # include <unistd.h>                        /* open, close */
  14. #endif
  15. #ifdef    HAVE_CTYPE_H
  16. # include <ctype.h>                        /* isupper, tolower */
  17. #endif
  18. #ifdef    HAVE_FNMATCH_H                        /* fnmatch */
  19. # include <fnmatch.h>
  20. #else /* valid replacement */
  21. # define fnmatch    strncasecmp
  22. # define FNM_PATHNAME    NAMELEN_PATH
  23. #endif
  24. #ifdef    HAVE_SETJMP_H
  25. # include <setjmp.h>
  26. #endif
  27. #ifdef    HAVE_STDIO_H
  28. # include <stdio.h>
  29. #endif
  30. #ifdef    HAVE_SYS_FCNTL_H
  31. # include <sys/fcntl.h>                        /* read, write */
  32. #endif
  33. #ifdef    HAVE_SYS_STAT_H
  34. # include <sys/stat.h>                        /* mkdir */
  35. #endif
  36. #ifdef HAVE_DIRENT_H
  37. # include <dirent.h>
  38. #endif
  39.  
  40. #endif
  41.